home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / Servis / X-setup / _SETUP.1 / XQ Network Workgroup.xpl < prev    next >
Text File  |  1999-06-12  |  2KB  |  92 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="5"
  4. "UIPATH"="Network\Security\General"
  5. "NAME"="Workgroup Security Options"
  6. "VERSION"="1.1"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Show "Entire Network" in Network Neighborhood"
  9. "TEXT 2"="Show other workgroup-users in Network Neighborhood"
  10. "TEXT 3"="Show "Connect/Disconnect drive" in Explorer"
  11. "TEXT 4"="Allow file sharing"
  12. "TEXT 5"="Allow printer sharing"
  13. "DESCRIPTION 1"="Some options to improve the security of your network."
  14. "AUTHOR"="Xteq Systems"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com."
  17.  
  18.  
  19. sP1="HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Network\"
  20. sV1="NoEntireNetwork"
  21. sV2="NoWorkgroupContents"
  22. sP1andV3="HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoNetConnectDisconnect"
  23. sV4="NoFileSharing"
  24. sV5="NoPrintSharing"
  25.  
  26. Sub Plugin_Initialize 
  27.  i=RegReadValue(sP1&sV1)
  28.  if i=0 or IsEmpty(i) then
  29.     SetUIElement 1,true
  30.  end if
  31.  
  32.  i=RegReadValue(sP1&sV2)
  33.  if i=0 or IsEmpty(i) then
  34.     SetUIElement 2,true
  35.  end if
  36.  
  37.  i=RegReadValue(sP1andV3)
  38.  if i=0 or IsEmpty(i) then
  39.     SetUIElement 3,true
  40.  end if
  41.  
  42.  i=RegReadValue(sP1&sV4)
  43.  if i=0 or IsEmpty(i) then
  44.     SetUIElement 4,true
  45.  end if
  46.  
  47.  i=RegReadValue(sP1&sV5)
  48.  if i=0 or IsEmpty(i) then
  49.     SetUIElement 5,true
  50.  end if
  51.  
  52.  
  53. End Sub
  54.  
  55. Sub Plugin_CheckData(ElementIndex)
  56. End Sub
  57.  
  58. Sub ae(val,Path)
  59.  if val=true then
  60.    Call RegWriteValue(path,1,2)
  61.  else
  62.    Call RegWriteValue(path,0,2)
  63.  end if
  64. end Sub
  65.  
  66.  
  67. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  68.  b=GetUIElement(1)
  69.  Call ae(not b,sP1&sV1)
  70.  
  71.  b=GetUIElement(2)
  72.  Call ae(not b,sP1&sV2)
  73.  
  74.  b=GetUIElement(3)
  75.  Call ae(not b,sP1andV3)
  76.  
  77.  b=GetUIElement(4)
  78.  Call ae(not b,sP1&sV4)
  79.  
  80.  b=GetUIElement(5)
  81.  Call ae(not b,sP1&sV5)
  82.  
  83.  Restart
  84. End Sub
  85.  
  86.  
  87. Sub Plugin_Terminate 
  88. End Sub
  89.  
  90.  
  91.  
  92.